home *** CD-ROM | disk | FTP | other *** search
/ Sports Illustrated for Kids - Awesome Athletes! / Sports Illustrated for Kids - Awesome Athletes!.iso / hf.dir / 00064_user2.ls < prev    next >
Encoding:
Text File  |  1996-04-19  |  586 b   |  20 lines

  1. on mouseDown
  2.   global gHFpreviousline, ghfathleteno, gHFposition, ghfmaxathleteno, gHFline, gHFsearchcastmember
  3.   set vLine to the mouseLine
  4.   if (vLine > 0) and (vLine <= ghfmaxathleteno) then
  5.     hilite line vLine of field gHFsearchcastmember
  6.     set gHFline to vLine
  7.   end if
  8.   if gHFpreviousline = vLine then
  9.     set gHFposition to vLine
  10.     if (gHFposition > 0) and (gHFposition <= ghfmaxathleteno) then
  11.       set the puppet of sprite 34 to 0
  12.       set gHFline to vLine
  13.       getposition()
  14.     else
  15.       set gHFposition to 0
  16.     end if
  17.   end if
  18.   set gHFpreviousline to vLine
  19. end
  20.